home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 4_misc / digraph < prev    next >
Text File  |  2001-03-21  |  2KB  |  51 lines

  1. Synopsis:
  2.    digraph [-<flag> [<arg0> <arg1> [<arg2>]]]
  3.  
  4. Description:
  5.    DIGRAPH allows you to maintain your client's internal digraph table.
  6.    A digraph is a series of keystrokes that are used to represent other
  7.    characters that may not physically be available on your keyboard
  8.    (such as the British pound sign on U.S. keyboards).  To actually
  9.    enter a digraph, a key must be bound to ENTER_DIGRAPH, which then
  10.    makes the client interpret the next two characters as the desired
  11.    special character.
  12.  
  13.    If no arguments are given to DIGRAPH, the current digraph table is
  14.    shown.  Depending on the flag given, digraphs may be added, deleted,
  15.    or the entire digraph table may be cleared.  If the SAVE command is
  16.    used, any changes made to the client's default internal digraph
  17.    table are saved in your .ircrc file.
  18.  
  19. Options:
  20.    -add     This takes 3 arguments, the two characters to type to get
  21.               the digraph, and the digraph itself.  Any of the 3
  22.               characters may be represented as literal characters or
  23.               their decimal equivalent, in any combination.
  24.    -remove  This takes 2 arguments, the two characters used to obtain a
  25.               specific digraph.  Either the literal characters or
  26.               decimal values may be used, as with -add.
  27.    -clear   This takes no arguments, it just clears the internal
  28.               digraph table.
  29.  
  30. Examples:
  31.    To add a digraph for the character "c" by composing "a" and "b":
  32.       /digraph -add a b c
  33.  
  34.    Another way of adding the same digraph:
  35.       /digraph -add 61 62 63
  36.  
  37.    To remove the digraph set above:
  38.       /digraph -remove a b
  39.  
  40.    To clear the internal digraph table:
  41.       /digraph -clear
  42.  
  43. See Also:
  44.    bind(4) enter_digraph; set(4) translation
  45.  
  46. Other Notes:
  47.    If your translation table is set to anything other than Latin-1,
  48.    some (or all) characters may be converted to something your terminal
  49.    is incapable of displaying.  Your mileage will vary.
  50.  
  51.